1 | import('./something') |
结果typescript报错1
[ts] 面向 ECMAScript 2015 模块时,不能使用动态导入。
解决办法:
- 将tsconfig.json中的module配置从
es6
改为esnext
1
2
3
4
5
6
7
8{
"compilerOptions": {
"outDir": "./build/",
"sourceMap": true,
"module": "esnext", // 支持import()
"target": "es5",
}
}